home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / IDL / WinIter.idl < prev    next >
Encoding:
Text File  |  1997-01-01  |  1.3 KB  |  64 lines  |  [TEXT/MPS ]

  1. //#    Copyright:    © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #ifndef _WINITER_
  4. #define _WINITER_
  5.  
  6. #ifndef _ODOBJECT_
  7. #include "ODObject.idl"
  8. #endif
  9.  
  10. //=====================================================================================
  11. // Classes defined in this interface
  12. //=====================================================================================
  13.  
  14. interface  ODWindowIterator;
  15.  
  16. //=====================================================================================
  17. // Classes used by this interface
  18. //=====================================================================================
  19.  
  20. interface  ODWindow;
  21.  
  22.  
  23. //=====================================================================================
  24. // Class ODWindowIterator
  25. //=====================================================================================
  26.  
  27. interface ODWindowIterator : ODObject
  28. {
  29.  
  30.      ODWindow First();
  31.  
  32.     ODWindow Next();
  33.  
  34.     ODWindow Last();
  35.  
  36.     ODWindow Previous();
  37.  
  38.     ODBoolean IsNotComplete();
  39.  
  40. #ifdef __SOMIDL__
  41.     implementation
  42.     {
  43.         majorversion = 1; minorversion = 0;
  44.  
  45.           functionprefix = ODWindowIterator;
  46.  
  47.         override:
  48.             somUninit;
  49.             
  50.         releaseorder:
  51.             First,
  52.             Next,
  53.             Last,
  54.             Previous,
  55.             IsNotComplete,
  56.             reserved1;
  57.         
  58.  
  59.       };
  60. #endif //# __SOMIDL__
  61. };
  62.  
  63. #endif //# _WINITER_
  64.